home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1997 May
/
EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso
/
ghost
/
gs403src_gs.lha
/
gs4.03
/
szlibd.c
< prev
next >
Wrap
C/C++ Source or Header
|
1995-11-21
|
2KB
|
83 lines
/* Copyright (C) 1995 Aladdin Enterprises. All rights reserved.
This file is part of Aladdin Ghostscript.
Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND. No author
or distributor accepts any responsibility for the consequences of using it,
or for whether it serves any particular purpose or works at all, unless he
or she says so in writing. Refer to the Aladdin Ghostscript Free Public
License (the "License") for full details.
Every copy of Aladdin Ghostscript must include a copy of the License,
normally in a plain ASCII text file named PUBLIC. The License grants you
the right to copy, modify and redistribute Aladdin Ghostscript, but only
under certain conditions described in the License. Among other things, the
License requires that the copyright notice and this notice be preserved on
all copies.
*/
/* szlibd.c */
/* zlib decoding (decompression) filter stream */
#include "std.h"
#include "gsmemory.h"
#include "strimpl.h"
#include "szlibx.h"
#define ss ((stream_zlib_state *)st)
#define szs (&ss->zstate)
/* Initialize the filter. */
private int
s_zlibD_init(stream_state *st)
{ szs->zalloc = s_zlib_alloc;
szs->zfree = s_zlib_free;
szs->opaque = &gs_memory_default;
if ( inflateInit(szs) != Z_OK )
return ERRC; /****** WRONG ******/
return 0;
}
/* Process a buffer */
private int
s_zlibD_process(stream_state *st, stream_cursor_read *pr,
stream_cursor_write *pw, bool ignore_last)
{ const byte *p = pr->ptr;
int status;
/* Detect no input or full output so that we don't get */
/* a Z_BUF_ERROR return. */
if ( pw->ptr == pw->limit )
return 1;
if ( pr->ptr == pr->limit )
return 0;
szs->next_in = p + 1;
szs->avail_in = pr->limit - p;
szs->next_out = pw->ptr + 1;
szs->avail_out = pw->limit - pw->ptr;
status = inflate(szs, Z_PARTIAL_FLUSH);
pr->ptr = szs->next_in - 1;
pw->ptr = szs->next_out - 1;
switch ( status )
{
case Z_OK:
return (pw->ptr == pw->limit ? 1 : pr->ptr > p ? 0 : 1);
case Z_STREAM_END:
return EOFC;
default:
return ERRC;
}
}
/* Release the stream */
private void
s_zlibD_release(stream_state *st)
{ inflateEnd(szs);
}
/* Stream template */
const stream_template s_zlibD_template =
{ &st_zlib_state, s_zlibD_init, s_zlibD_process, 1, 1, s_zlibD_release
};
#undef ss